/* Simple, reliable custom cursor styles */
.custom-cursor {
    cursor: none !important;
}

.custom-cursor a,
.custom-cursor button,
.custom-cursor input,
.custom-cursor textarea,
.custom-cursor select,
.custom-cursor .service-card,
.custom-cursor .package-card {
    cursor: none !important;
}

.cursor,
.cursor-dot,
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    will-change: transform, left, top;
    border-radius: 50%;
}

.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(138, 117, 237, 0.6);
    background-color: transparent;
    mix-blend-mode: difference;
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(156, 110, 255, 0.8);
    box-shadow: 0 0 10px rgba(156, 110, 255, 0.5);
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.cursor-trail {
    width: 12px;
    height: 12px;
    background-color: rgba(156, 110, 255, 0.3);
    filter: blur(2px);
}

/* Hover effects */
.cursor.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(156, 110, 255, 0.8);
    background-color: rgba(156, 110, 255, 0.1);
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.9);
}

.cursor-trail.hover {
    opacity: 0.2 !important;
}

/* Click effects */
.cursor.click {
    width: 35px;
    height: 35px;
    border-width: 3px;
    border-color: rgba(156, 110, 255, 1);
    background-color: rgba(156, 110, 255, 0.2);
}

.cursor-dot.click {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
}

.cursor-trail.click {
    width: 6px;
    height: 6px;
    opacity: 0.3 !important;
}

/* Pulsing glow animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px 2px rgba(156, 110, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 15px 5px rgba(156, 110, 255, 0.7);
    }
}

.cursor-dot {
    animation: pulse 1.5s ease-in-out infinite alternate;
}

/* Disable on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-dot, .cursor-trail {
        display: none !important;
    }
}